home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xvmahjon.por / xvmahjon / xvmahjongg / sunview / icons.c < prev    next >
C/C++ Source or Header  |  1991-12-20  |  17KB  |  840 lines

  1. /*
  2.  * XView port of Mahjongg done by Stan K. Tazuma, 9/91
  3.  *
  4.  * Changes made to this file were mostly cosmetic (pathnames).
  5.  * Also moved the definition of the black/white mahjongg icon into this
  6.  * file from mahjongg.c.
  7.  *
  8.  * $Header: /home/sirius/skt/cmds/src/sun/mj/RCS/icons.c,v 2.2 91/12/20 14:30:19 skt Exp $
  9.  *
  10.  */
  11.  
  12. /*
  13.  *    Copyright 1988, Mark Holm
  14.  *            Exceptions
  15.  *
  16.  *    Acknowledgments to Dorothy Robinson for her artistic
  17.  *     abilities in drawing the icons and to Jim Batch for
  18.  *     technical support and graphical concepts (which I abandoned in favor
  19.  *       of the easy way out).
  20.  *
  21.  *    Permission is given to copy and distribute for non-profit purposes.
  22.  *
  23.  */
  24.  
  25. /*
  26.  * This file includes some lines that are needed either just for SunView
  27.  * or just for XView.  The lines can be left in for both versions, and
  28.  * the result, when compiled, can be used for linking both the SunView
  29.  * and the XView executable.
  30.  *
  31.  * As set up, the default is to compile in the lines so that icons.o
  32.  * can be shared.  By defining either XVIEW or SUNVIEW, a toolkit
  33.  * specific version of icons.o will be built.
  34.  */
  35. #if ! defined(XVIEW) && ! defined(SUNVIEW)
  36. #define DO_FOR_BOTH
  37. #endif
  38.  
  39. /*   This is the file for building the icon images for the */
  40. /*    images both color and b/w.                             */
  41.  
  42. #include <sys/types.h>
  43. #ifdef SUNVIEW
  44. #include <pixrect/pixrect.h>
  45. #include <suntool/sunview.h>
  46. #else
  47. #include <xview/xview.h>
  48. #endif
  49.  
  50. /* color frame closed icon */
  51.  
  52. static short        icon_cimage[] = {
  53. #include "images/color/mahjongg.icon"
  54. };
  55. mpr_static(cicon_image, 64, 64, 8, icon_cimage);
  56.  
  57. /* Black and white closed icon image */
  58.  
  59. short        icon_image[] = {
  60. #include "images/bandw/mahjongg.icon"
  61. };
  62.  
  63. #if ! defined(SUNVIEW) || defined(DO_FOR_BOTH)
  64. mpr_static(icon_image_pr, 64, 64, 1, icon_image);
  65. #endif
  66.  
  67. /* cursor icons */
  68.  
  69. short        stick_image[] = {
  70. #include "images/bandw/mahjongg.cursor"
  71. };
  72. #if defined(SUNVIEW) || defined(DO_FOR_BOTH)
  73. mpr_static(stick, 16, 16, 1, stick_image);
  74. #endif
  75.  
  76. short        wait_image[] = {
  77. #include "images/hglass.cursor"
  78. };
  79. #if defined(SUNVIEW) || defined(DO_FOR_BOTH)
  80. mpr_static(waiting, 16, 16, 1, wait_image);
  81. #endif
  82.  
  83. short        confirm_image[] = {
  84. #include "images/confirm.cursor"
  85. };
  86. #if defined(SUNVIEW) || defined(DO_FOR_BOTH)
  87. mpr_static(confirm, 16, 16, 1, confirm_image);
  88. #endif
  89.  
  90. /* Number images (color) */
  91.  
  92. static short        NUM0_cimage[] = {
  93. #ifdef SWAP
  94. #include "images/swap/0"
  95. #else
  96. #include "images/color/0"
  97. #endif
  98. };
  99. mpr_static(cNUM0, 64, 64, 8, NUM0_cimage);
  100.  
  101. static short        NUM1_cimage[] = {
  102. #ifdef SWAP
  103. #include "images/swap/1"
  104. #else
  105. #include "images/color/1"
  106. #endif
  107. };
  108. mpr_static(cNUM1, 64, 64, 8, NUM1_cimage);
  109.  
  110. static short        NUM2_cimage[] = {
  111. #ifdef SWAP
  112. #include "images/swap/2"
  113. #else
  114. #include "images/color/2"
  115. #endif
  116. };
  117. mpr_static(cNUM2, 64, 64, 8, NUM2_cimage);
  118.  
  119. static short        NUM3_cimage[] = {
  120. #ifdef SWAP
  121. #include "images/swap/3"
  122. #else
  123. #include "images/color/3"
  124. #endif
  125. };
  126. mpr_static(cNUM3, 64, 64, 8, NUM3_cimage);
  127.  
  128. static short        NUM4_cimage[] = {
  129. #ifdef SWAP
  130. #include "images/swap/4"
  131. #else
  132. #include "images/color/4"
  133. #endif
  134. };
  135. mpr_static(cNUM4, 64, 64, 8, NUM4_cimage);
  136.  
  137. static short        NUM5_cimage[] = {
  138. #ifdef SWAP
  139. #include "images/swap/5"
  140. #else
  141. #include "images/color/5"
  142. #endif
  143. };
  144. mpr_static(cNUM5, 64, 64, 8, NUM5_cimage);
  145.  
  146. static short        NUM6_cimage[] = {
  147. #ifdef SWAP
  148. #include "images/swap/6"
  149. #else
  150. #include "images/color/6"
  151. #endif
  152. };
  153. mpr_static(cNUM6, 64, 64, 8, NUM6_cimage);
  154.  
  155. static short        NUM7_cimage[] = {
  156. #ifdef SWAP
  157. #include "images/swap/7"
  158. #else
  159. #include "images/color/7"
  160. #endif
  161. };
  162. mpr_static(cNUM7, 64, 64, 8, NUM7_cimage);
  163.  
  164. static short        NUM8_cimage[] = {
  165. #ifdef SWAP
  166. #include "images/swap/8"
  167. #else
  168. #include "images/color/8"
  169. #endif
  170. };
  171. mpr_static(cNUM8, 64, 64, 8, NUM8_cimage);
  172.  
  173. static short        NUM9_cimage[] = {
  174. #ifdef SWAP
  175. #include "images/swap/9"
  176. #else
  177. #include "images/color/9"
  178. #endif
  179. };
  180. mpr_static(cNUM9, 64, 64, 8, NUM9_cimage);
  181.  
  182. /* Number images (B/W) */
  183.  
  184. static short        NUM0_image[] = {
  185. #include "images/bandw/0"
  186. };
  187. mpr_static(NUM0, 64, 64, 1, NUM0_image);
  188.  
  189. static short        NUM1_image[] = {
  190. #include "images/bandw/1"
  191. };
  192. mpr_static(NUM1, 64, 64, 1, NUM1_image);
  193.  
  194. static short        NUM2_image[] = {
  195. #include "images/bandw/2"
  196. };
  197. mpr_static(NUM2, 64, 64, 1, NUM2_image);
  198.  
  199. static short        NUM3_image[] = {
  200. #include "images/bandw/3"
  201. };
  202. mpr_static(NUM3, 64, 64, 1, NUM3_image);
  203.  
  204. static short        NUM4_image[] = {
  205. #include "images/bandw/4"
  206. };
  207. mpr_static(NUM4, 64, 64, 1, NUM4_image);
  208.  
  209. static short        NUM5_image[] = {
  210. #include "images/bandw/5"
  211. };
  212. mpr_static(NUM5, 64, 64, 1, NUM5_image);
  213.  
  214. static short        NUM6_image[] = {
  215. #include "images/bandw/6"
  216. };
  217. mpr_static(NUM6, 64, 64, 1, NUM6_image);
  218.  
  219. static short        NUM7_image[] = {
  220. #include "images/bandw/7"
  221. };
  222. mpr_static(NUM7, 64, 64, 1, NUM7_image);
  223.  
  224. static short        NUM8_image[] = {
  225. #include "images/bandw/8"
  226. };
  227. mpr_static(NUM8, 64, 64, 1, NUM8_image);
  228.  
  229. static short        NUM9_image[] = {
  230. #include "images/bandw/9"
  231. };
  232. mpr_static(NUM9, 64, 64, 1, NUM9_image);
  233.  
  234. /* Playing Tiles (color) */
  235.  
  236. static short        BLANK_cimage[] = {
  237. #ifdef SWAP
  238. #include "images/swap/blank"
  239. #else
  240. #include "images/color/blank"
  241. #endif
  242. };
  243. mpr_static(cBLANK, 64, 64, 8, BLANK_cimage);
  244.  
  245. static short        BAM1_cimage[] = {
  246. #ifdef SWAP
  247. #include "images/swap/bam1"
  248. #else
  249. #include "images/color/bam1"
  250. #endif
  251. };
  252. mpr_static(cBAM1, 64, 64, 8, BAM1_cimage);
  253.  
  254. static short        BAM2_cimage[] = {
  255. #ifdef SWAP
  256. #include "images/swap/bam2"
  257. #else
  258. #include "images/color/bam2"
  259. #endif
  260. };
  261. mpr_static(cBAM2, 64, 64, 8, BAM2_cimage);
  262.  
  263. static short        BAM3_cimage[] = {
  264. #ifdef SWAP
  265. #include "images/swap/bam3"
  266. #else
  267. #include "images/color/bam3"
  268. #endif
  269. };
  270. mpr_static(cBAM3, 64, 64, 8, BAM3_cimage);
  271.  
  272. static short        BAM4_cimage[] = {
  273. #ifdef SWAP
  274. #include "images/swap/bam4"
  275. #else
  276. #include "images/color/bam4"
  277. #endif
  278. };
  279. mpr_static(cBAM4, 64, 64, 8, BAM4_cimage);
  280.  
  281. static short        BAM5_cimage[] = {
  282. #ifdef SWAP
  283. #include "images/swap/bam5"
  284. #else
  285. #include "images/color/bam5"
  286. #endif
  287. };
  288. mpr_static(cBAM5, 64, 64, 8, BAM5_cimage);
  289.  
  290. static short        BAM6_cimage[] = {
  291. #ifdef SWAP
  292. #include "images/swap/bam6"
  293. #else
  294. #include "images/color/bam6"
  295. #endif
  296. };
  297. mpr_static(cBAM6, 64, 64, 8, BAM6_cimage);
  298.  
  299. static short        BAM7_cimage[] = {
  300. #ifdef SWAP
  301. #include "images/swap/bam7"
  302. #else
  303. #include "images/color/bam7"
  304. #endif
  305. };
  306. mpr_static(cBAM7, 64, 64, 8, BAM7_cimage);
  307.  
  308. static short        BAM8_cimage[] = {
  309. #ifdef SWAP
  310. #include "images/swap/bam8"
  311. #else
  312. #include "images/color/bam8"
  313. #endif
  314. };
  315. mpr_static(cBAM8, 64, 64, 8, BAM8_cimage);
  316.  
  317. static short        BAM9_cimage[] = {
  318. #ifdef SWAP
  319. #include "images/swap/bam9"
  320. #else
  321. #include "images/color/bam9"
  322. #endif
  323. };
  324. mpr_static(cBAM9, 64, 64, 8, BAM9_cimage);
  325.  
  326. static short        DOT1_cimage[] = {
  327. #ifdef SWAP
  328. #include "images/swap/circ1"
  329. #else
  330. #include "images/color/circ1"
  331. #endif
  332. };
  333. mpr_static(cDOT1, 64, 64, 8, DOT1_cimage);
  334.  
  335. static short        DOT2_cimage[] = {
  336. #ifdef SWAP
  337. #include "images/swap/circ2"
  338. #else
  339. #include "images/color/circ2"
  340. #endif
  341. };
  342. mpr_static(cDOT2, 64, 64, 8, DOT2_cimage);
  343.  
  344. static short        DOT3_cimage[] = {
  345. #ifdef SWAP
  346. #include "images/swap/circ3"
  347. #else
  348. #include "images/color/circ3"
  349. #endif
  350. };
  351. mpr_static(cDOT3, 64, 64, 8, DOT3_cimage);
  352.  
  353. static short        DOT4_cimage[] = {
  354. #ifdef SWAP
  355. #include "images/swap/circ4"
  356. #else
  357. #include "images/color/circ4"
  358. #endif
  359. };
  360. mpr_static(cDOT4, 64, 64, 8, DOT4_cimage);
  361.  
  362. static short        DOT5_cimage[] = {
  363. #ifdef SWAP
  364. #include "images/swap/circ5"
  365. #else
  366. #include "images/color/circ5"
  367. #endif
  368. };
  369. mpr_static(cDOT5, 64, 64, 8, DOT5_cimage);
  370.  
  371. static short        DOT6_cimage[] = {
  372. #ifdef SWAP
  373. #include "images/swap/circ6"
  374. #else
  375. #include "images/color/circ6"
  376. #endif
  377. };
  378. mpr_static(cDOT6, 64, 64, 8, DOT6_cimage);
  379.  
  380. static short        DOT7_cimage[] = {
  381. #ifdef SWAP
  382. #include "images/swap/circ7"
  383. #else
  384. #include "images/color/circ7"
  385. #endif
  386. };
  387. mpr_static(cDOT7, 64, 64, 8, DOT7_cimage);
  388.  
  389. static short        DOT8_cimage[] = {
  390. #ifdef SWAP
  391. #include "images/swap/circ8"
  392. #else
  393. #include "images/color/circ8"
  394. #endif
  395. };
  396. mpr_static(cDOT8, 64, 64, 8, DOT8_cimage);
  397.  
  398. static short        DOT9_cimage[] = {
  399. #ifdef SWAP
  400. #include "images/swap/circ9"
  401. #else
  402. #include "images/color/circ9"
  403. #endif
  404. };
  405. mpr_static(cDOT9, 64, 64, 8, DOT9_cimage);
  406.  
  407. static short        CHA1_cimage[] = {
  408. #ifdef SWAP
  409. #include "images/swap/char1"
  410. #else
  411. #include "images/color/char1"
  412. #endif
  413. };
  414. mpr_static(cCHA1, 64, 64, 8, CHA1_cimage);
  415.  
  416. static short        CHA2_cimage[] = {
  417. #ifdef SWAP
  418. #include "images/swap/char2"
  419. #else
  420. #include "images/color/char2"
  421. #endif
  422. };
  423. mpr_static(cCHA2, 64, 64, 8, CHA2_cimage);
  424.  
  425. static short        CHA3_cimage[] = {
  426. #ifdef SWAP
  427. #include "images/swap/char3"
  428. #else
  429. #include "images/color/char3"
  430. #endif
  431. };
  432. mpr_static(cCHA3, 64, 64, 8, CHA3_cimage);
  433.  
  434. static short        CHA4_cimage[] = {
  435. #ifdef SWAP
  436. #include "images/swap/char4"
  437. #else
  438. #include "images/color/char4"
  439. #endif
  440. };
  441. mpr_static(cCHA4, 64, 64, 8, CHA4_cimage);
  442.  
  443. static short        CHA5_cimage[] = {
  444. #ifdef SWAP
  445. #include "images/swap/char5"
  446. #else
  447. #include "images/color/char5"
  448. #endif
  449. };
  450. mpr_static(cCHA5, 64, 64, 8, CHA5_cimage);
  451.  
  452. static short        CHA6_cimage[] = {
  453. #ifdef SWAP
  454. #include "images/swap/char6"
  455. #else
  456. #include "images/color/char6"
  457. #endif
  458. };
  459. mpr_static(cCHA6, 64, 64, 8, CHA6_cimage);
  460.  
  461. static short        CHA7_cimage[] = {
  462. #ifdef SWAP
  463. #include "images/swap/char7"
  464. #else
  465. #include "images/color/char7"
  466. #endif
  467. };
  468. mpr_static(cCHA7, 64, 64, 8, CHA7_cimage);
  469.  
  470. static short        CHA8_cimage[] = {
  471. #ifdef SWAP
  472. #include "images/swap/char8"
  473. #else
  474. #include "images/color/char8"
  475. #endif
  476. };
  477. mpr_static(cCHA8, 64, 64, 8, CHA8_cimage);
  478.  
  479. static short        CHA9_cimage[] = {
  480. #ifdef SWAP
  481. #include "images/swap/char9"
  482. #else
  483. #include "images/color/char9"
  484. #endif
  485. };
  486. mpr_static(cCHA9, 64, 64, 8, CHA9_cimage);
  487.  
  488. static short        EAST_cimage[] = {
  489. #ifdef SWAP
  490. #include "images/swap/c_east"
  491. #else
  492. #include "images/color/c_east"
  493. #endif
  494. };
  495. mpr_static(cEAST, 64, 64, 8, EAST_cimage);
  496.  
  497. static short        WEST_cimage[] = {
  498. #ifdef SWAP
  499. #include "images/swap/c_west"
  500. #else
  501. #include "images/color/c_west"
  502. #endif
  503. };
  504. mpr_static(cWEST, 64, 64, 8, WEST_cimage);
  505.  
  506. static short        SOUT_cimage[] = {
  507. #ifdef SWAP
  508. #include "images/swap/c_south"
  509. #else
  510. #include "images/color/c_south"
  511. #endif
  512. };
  513. mpr_static(cSOUT, 64, 64, 8, SOUT_cimage);
  514.  
  515. static short        NORT_cimage[] = {
  516. #ifdef SWAP
  517. #include "images/swap/c_north"
  518. #else
  519. #include "images/color/c_north"
  520. #endif
  521. };
  522. mpr_static(cNORT, 64, 64, 8, NORT_cimage);
  523.  
  524. static short        GRED_cimage[] = {
  525. #ifdef SWAP
  526. #include "images/swap/d_green"
  527. #else
  528. #include "images/color/d_green"
  529. #endif
  530. };
  531. mpr_static(cGRED, 64, 64, 8, GRED_cimage);
  532.  
  533. static short        REDD_cimage[] = {
  534. #ifdef SWAP
  535. #include "images/swap/d_red"
  536. #else
  537. #include "images/color/d_red"
  538. #endif
  539. };
  540. mpr_static(cREDD, 64, 64, 8, REDD_cimage);
  541.  
  542. static short        WHTD_cimage[] = {
  543. #ifdef SWAP
  544. #include "images/swap/d_white"
  545. #else
  546. #include "images/color/d_white"
  547. #endif
  548. };
  549. mpr_static(cWHTD, 64, 64, 8, WHTD_cimage);
  550.  
  551. static short         AUT_cimage[] = {
  552. #ifdef SWAP
  553. #include "images/swap/s_autumn"
  554. #else
  555. #include "images/color/s_autumn"
  556. #endif
  557. };
  558. mpr_static( cAUT, 64, 64, 8, AUT_cimage);
  559.  
  560. static short         SPR_cimage[] = {
  561. #ifdef SWAP
  562. #include "images/swap/s_spring"
  563. #else
  564. #include "images/color/s_spring"
  565. #endif
  566. };
  567. mpr_static( cSPR, 64, 64, 8, SPR_cimage);
  568.  
  569. static short         SUM_cimage[] = {
  570. #ifdef SWAP
  571. #include "images/swap/s_summer"
  572. #else
  573. #include "images/color/s_summer"
  574. #endif
  575. };
  576. mpr_static( cSUM, 64, 64, 8, SUM_cimage);
  577.  
  578. static short         WIN_cimage[] = {
  579. #ifdef SWAP
  580. #include "images/swap/s_winter"
  581. #else
  582. #include "images/color/s_winter"
  583. #endif
  584. };
  585. mpr_static( cWIN, 64, 64, 8, WIN_cimage);
  586.  
  587. static short         BAM_cimage[] = {
  588. #ifdef SWAP
  589. #include "images/swap/f_bam"
  590. #else
  591. #include "images/color/f_bam"
  592. #endif
  593. };
  594. mpr_static( cBAM, 64, 64, 8, BAM_cimage);
  595.  
  596. static short         MUM_cimage[] = {
  597. #ifdef SWAP
  598. #include "images/swap/f_mum"
  599. #else
  600. #include "images/color/f_mum"
  601. #endif
  602. };
  603. mpr_static( cMUM, 64, 64, 8, MUM_cimage);
  604.  
  605. static short         ORC_cimage[] = {
  606. #ifdef SWAP
  607. #include "images/swap/f_orch"
  608. #else
  609. #include "images/color/f_orch"
  610. #endif
  611. };
  612. mpr_static( cORC, 64, 64, 8, ORC_cimage);
  613.  
  614. static short         PLM_cimage[] = {
  615. #ifdef SWAP
  616. #include "images/swap/f_plum"
  617. #else
  618. #include "images/color/f_plum"
  619. #endif
  620. };
  621. mpr_static( cPLM, 64, 64, 8, PLM_cimage);
  622.  
  623.  
  624. /* Playing Tiles (B/W) */
  625.  
  626. static short        BLANK_image[] = {
  627. #include "images/bandw/blank"
  628. };
  629. mpr_static(BLANK, 64, 64, 1, BLANK_image);
  630.  
  631. static short        BAM1_image[] = {
  632. #include "images/bandw/bam1"
  633. };
  634. mpr_static(BAM1, 64, 64, 1, BAM1_image);
  635.  
  636. static short        BAM2_image[] = {
  637. #include "images/bandw/bam2"
  638. };
  639. mpr_static(BAM2, 64, 64, 1, BAM2_image);
  640.  
  641. static short        BAM3_image[] = {
  642. #include "images/bandw/bam3"
  643. };
  644. mpr_static(BAM3, 64, 64, 1, BAM3_image);
  645.  
  646. static short        BAM4_image[] = {
  647. #include "images/bandw/bam4"
  648. };
  649. mpr_static(BAM4, 64, 64, 1, BAM4_image);
  650.  
  651. static short        BAM5_image[] = {
  652. #include "images/bandw/bam5"
  653. };
  654. mpr_static(BAM5, 64, 64, 1, BAM5_image);
  655.  
  656. static short        BAM6_image[] = {
  657. #include "images/bandw/bam6"
  658. };
  659. mpr_static(BAM6, 64, 64, 1, BAM6_image);
  660.  
  661. static short        BAM7_image[] = {
  662. #include "images/bandw/bam7"
  663. };
  664. mpr_static(BAM7, 64, 64, 1, BAM7_image);
  665.  
  666. static short        BAM8_image[] = {
  667. #include "images/bandw/bam8"
  668. };
  669. mpr_static(BAM8, 64, 64, 1, BAM8_image);
  670.  
  671. static short        BAM9_image[] = {
  672. #include "images/bandw/bam9"
  673. };
  674. mpr_static(BAM9, 64, 64, 1, BAM9_image);
  675.  
  676. static short        DOT1_image[] = {
  677. #include "images/bandw/circ1"
  678. };
  679. mpr_static(DOT1, 64, 64, 1, DOT1_image);
  680.  
  681. static short        DOT2_image[] = {
  682. #include "images/bandw/circ2"
  683. };
  684. mpr_static(DOT2, 64, 64, 1, DOT2_image);
  685.  
  686. static short        DOT3_image[] = {
  687. #include "images/bandw/circ3"
  688. };
  689. mpr_static(DOT3, 64, 64, 1, DOT3_image);
  690.  
  691. static short        DOT4_image[] = {
  692. #include "images/bandw/circ4"
  693. };
  694. mpr_static(DOT4, 64, 64, 1, DOT4_image);
  695.  
  696. static short        DOT5_image[] = {
  697. #include "images/bandw/circ5"
  698. };
  699. mpr_static(DOT5, 64, 64, 1, DOT5_image);
  700.  
  701. static short        DOT6_image[] = {
  702. #include "images/bandw/circ6"
  703. };
  704. mpr_static(DOT6, 64, 64, 1, DOT6_image);
  705.  
  706. static short        DOT7_image[] = {
  707. #include "images/bandw/circ7"
  708. };
  709. mpr_static(DOT7, 64, 64, 1, DOT7_image);
  710.  
  711. static short        DOT8_image[] = {
  712. #include "images/bandw/circ8"
  713. };
  714. mpr_static(DOT8, 64, 64, 1, DOT8_image);
  715.  
  716. static short        DOT9_image[] = {
  717. #include "images/bandw/circ9"
  718. };
  719. mpr_static(DOT9, 64, 64, 1, DOT9_image);
  720.  
  721. static short        CHA1_image[] = {
  722. #include "images/bandw/char1"
  723. };
  724. mpr_static(CHA1, 64, 64, 1, CHA1_image);
  725.  
  726. static short        CHA2_image[] = {
  727. #include "images/bandw/char2"
  728. };
  729. mpr_static(CHA2, 64, 64, 1, CHA2_image);
  730.  
  731. static short        CHA3_image[] = {
  732. #include "images/bandw/char3"
  733. };
  734. mpr_static(CHA3, 64, 64, 1, CHA3_image);
  735.  
  736. static short        CHA4_image[] = {
  737. #include "images/bandw/char4"
  738. };
  739. mpr_static(CHA4, 64, 64, 1, CHA4_image);
  740.  
  741. static short        CHA5_image[] = {
  742. #include "images/bandw/char5"
  743. };
  744. mpr_static(CHA5, 64, 64, 1, CHA5_image);
  745.  
  746. static short        CHA6_image[] = {
  747. #include "images/bandw/char6"
  748. };
  749. mpr_static(CHA6, 64, 64, 1, CHA6_image);
  750.  
  751. static short        CHA7_image[] = {
  752. #include "images/bandw/char7"
  753. };
  754. mpr_static(CHA7, 64, 64, 1, CHA7_image);
  755.  
  756. static short        CHA8_image[] = {
  757. #include "images/bandw/char8"
  758. };
  759. mpr_static(CHA8, 64, 64, 1, CHA8_image);
  760.  
  761. static short        CHA9_image[] = {
  762. #include "images/bandw/char9"
  763. };
  764. mpr_static(CHA9, 64, 64, 1, CHA9_image);
  765.  
  766. static short        EAST_image[] = {
  767. #include "images/bandw/c_east"
  768. };
  769. mpr_static(EAST, 64, 64, 1, EAST_image);
  770.  
  771. static short        WEST_image[] = {
  772. #include "images/bandw/c_west"
  773. };
  774. mpr_static(WEST, 64, 64, 1, WEST_image);
  775.  
  776. static short        SOUT_image[] = {
  777. #include "images/bandw/c_south"
  778. };
  779. mpr_static(SOUT, 64, 64, 1, SOUT_image);
  780.  
  781. static short        NORT_image[] = {
  782. #include "images/bandw/c_north"
  783. };
  784. mpr_static(NORT, 64, 64, 1, NORT_image);
  785.  
  786. static short        GRED_image[] = {
  787. #include "images/bandw/d_green"
  788. };
  789. mpr_static(GRED, 64, 64, 1, GRED_image);
  790.  
  791. static short        REDD_image[] = {
  792. #include "images/bandw/d_red"
  793. };
  794. mpr_static(REDD, 64, 64, 1, REDD_image);
  795.  
  796. static short        WHTD_image[] = {
  797. #include "images/bandw/d_white"
  798. };
  799. mpr_static(WHTD, 64, 64, 1, WHTD_image);
  800.  
  801. static short         AUT_image[] = {
  802. #include "images/bandw/s_autumn"
  803. };
  804. mpr_static( AUT, 64, 64, 1,  AUT_image);
  805.  
  806. static short         SPR_image[] = {
  807. #include "images/bandw/s_spring"
  808. };
  809. mpr_static( SPR, 64, 64, 1,  SPR_image);
  810.  
  811. static short         SUM_image[] = {
  812. #include "images/bandw/s_summer"
  813. };
  814. mpr_static( SUM, 64, 64, 1,  SUM_image);
  815.  
  816. static short         WIN_image[] = {
  817. #include "images/bandw/s_winter"
  818. };
  819. mpr_static( WIN, 64, 64, 1,  WIN_image);
  820.  
  821. static short         BAM_image[] = {
  822. #include "images/bandw/f_bam"
  823. };
  824. mpr_static( BAM, 64, 64, 1,  BAM_image);
  825.  
  826. static short         MUM_image[] = {
  827. #include "images/bandw/f_mum"
  828. };
  829. mpr_static( MUM, 64, 64, 1,  MUM_image);
  830.  
  831. static short         ORC_image[] = {
  832. #include "images/bandw/f_orch"
  833. };
  834. mpr_static( ORC, 64, 64, 1,  ORC_image);
  835.  
  836. static short         PLM_image[] = {
  837. #include "images/bandw/f_plum"
  838. };
  839. mpr_static( PLM, 64, 64, 1,  PLM_image);
  840.